home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / shrdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  163 b   |  9 lines

  1. program ShrDemo;
  2. var
  3.   a: Integer;
  4. begin
  5.   a := 1024 shr 4;  { yields 64 }
  6.   a := -127 shr 4;  { yields -8 }
  7.   shr (a, 2)  { same as `a := a shr 2' }
  8. end.
  9.